home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 1 / BBS in a box - Trilogy I.iso / Files / Publish / Photoshop / Plug-in Modules / Code / DummyScan.r < prev    next >
Encoding:
Text File  |  1993-04-28  |  1.9 KB  |  85 lines  |  [TEXT/MPS ]

  1. /*
  2.     File: DummyScan.r
  3.  
  4.     Copyright 1990-91 by Thomas Knoll.
  5.     Copyright 1992-93 by Adobe Systems, Inc.
  6.  
  7.     Rez source file for DummyScan example.
  8. */
  9.  
  10. /* Plug-in module version number */
  11.  
  12. #include "PIGeneral.r"
  13.  
  14. resource 'PiMI' (16000, purgeable)
  15.     { latestAcquireVersion,
  16.       latestAcquireSubVersion,
  17.       0,
  18.       supportsBitmap +
  19.           supportsGrayScale +
  20.           supportsIndexedColor +
  21.           supportsRGBColor,
  22.       '    ', /* No required host */
  23.       {},
  24.       {}
  25.      };
  26.  
  27. /* About dialog box */
  28.  
  29. resource 'DLOG' (16000, purgeable)
  30.     {
  31.     {0, 0, 130, 200},
  32.     dBoxProc,
  33.     visible,
  34.     noGoAway,
  35.     0x0,
  36.     16000,
  37.     ""
  38.     };
  39.  
  40. resource 'DITL' (16000, purgeable)
  41.     {
  42.         {
  43.         {-80, 0, -60, 60},      Button { enabled, "Hidden" },
  44.         {0, 0, 130, 200},      UserItem { enabled },
  45.         {10, 10, 26, 190},      StaticText { disabled, "DummyScan" },
  46.         {36, 10, 52, 190},      StaticText { disabled, "© 1990-93 Adobe Systems, Inc." },
  47.         {62, 10, 110, 190},   StaticText { disabled, "An example plug-in image "
  48.                                                      "acquisition module "
  49.                                                      "for Adobe Photoshop™." }
  50.         }
  51.     };
  52.  
  53. /* Parameters dialog box */
  54.  
  55. resource 'DLOG' (16001, purgeable)
  56.     {
  57.     {0, 0, 170, 280},
  58.     movableDBoxProc,
  59.     visible,
  60.     noGoAway,
  61.     0x0,
  62.     16001,
  63.     "DummyScan"
  64.     };
  65.  
  66. resource 'DITL' (16001, purgeable)
  67.     {
  68.         {
  69.         {15, 205, 35, 265},   Button { enabled, "OK" },
  70.         {45, 205, 65, 265},   Button { enabled, "Cancel" },
  71.         {0, 0, 0, 0},          UserItem { disabled },
  72.         {10, 90, 26, 135},      EditText { disabled, "" },
  73.         {36, 90, 52, 135},      EditText { disabled, "" },
  74.         {62, 90, 78, 135},      EditText { disabled, "" },
  75.         {90, 30, 106, 150},   RadioButton { enabled, "Bitmap" },
  76.         {106, 30, 122, 150},  RadioButton { enabled, "Gray Scale" },
  77.         {122, 30, 138, 150},  RadioButton { enabled, "Indexed Color" },
  78.         {138, 30, 154, 150},  RadioButton { enabled, "RGB Color" },
  79.         {10, 26, 26, 85},      StaticText { disabled, "Images:" },
  80.         {36, 40, 52, 85},      StaticText { disabled, "Rows:" },
  81.         {62, 20, 78, 85},      StaticText { disabled, "Columns:" }
  82.         }
  83.     };
  84.  
  85.